Pass no argument to gnus-float-time rather than current-time.
authorGlenn Morris <rgm@gnu.org>
Wed, 2 Sep 2009 06:37:25 +0000 (06:37 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 2 Sep 2009 06:37:25 +0000 (06:37 +0000)
lisp/gnus/gnus-delay.el

index bd781f9df3024092ffd069648288e697d0b1fc57..eb227d934cd9ccb9a0c86cf848f8272ec56896c0 100644 (file)
@@ -105,7 +105,7 @@ DELAY is a string, giving the length of the time.  Possible values are:
           (setq deadline (gnus-float-time (apply 'encode-time
                                                  (append deadline nil))))
           ;; If this time has passed already, add a day.
-          (when (< deadline (gnus-float-time (current-time)))
+          (when (< deadline (gnus-float-time))
             (setq deadline (+ 3600 deadline))) ;3600 secs/day
           ;; Convert seconds to date header.
           (setq deadline (message-make-date
@@ -128,8 +128,7 @@ DELAY is a string, giving the length of the time.  Possible values are:
                 (t
                  (setq delay (* num 60))))
           (setq deadline (message-make-date
-                          (seconds-to-time (+ (gnus-float-time (current-time))
-                                              delay)))))
+                          (seconds-to-time (+ (gnus-float-time) delay)))))
          (t (error "Malformed delay `%s'" delay)))
     (message-add-header (format "%s: %s" gnus-delay-header deadline)))
   (set-buffer-modified-p t)